/*------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     :                                                                                         * 
* Support    :                                                                                         * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/
@charset "UTF-8";
/*--------------------------------------------------------------
[  Table of contents  ]
----------------------------------------------------------------
1. Normalize 
2. Typography
    >>> Heading
    >>> Helper Class
    >>> Lists
    >>> Links
3. Table
4. Form
5. Progress Wrap
6. Loader
7. Animations
8. Buttons
9. owl Button and Pagination Style
10. Header
11. Footer
12. Home Page section  
---------------------------------------------------------------- 
[ End table content ]
---------------------------------------------------------------- */

/*--------------------------------------------------------------
1. Normalize
----------------------------------------------------------------*/
/* :: google font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--primary-color: #F37B20;
	--secondary-color: #212121;

	--bg-color: #F37B20;

	--white-color: #ffffff;
	--black-color: #000000;

	--border-color: #D9D9D9;

	--body-color: #F7FAFF;
	--body-font: 'Poppins', sans-serif;

	--transition: all 0.5s;
	--box-shadow: 0 3px 15px rgb(0 0 0 / 12%);

	--color-extra01: #041601;
	--color-extra02: #FF7D7D;
	--color-extra03: #F3B592;
	--color-extra04: #39C0FA;
	--color-extra05: #4AAA48;

	/* #ffffff in decimal RGBA */
	--white-color-opacity: rgba(255, 255, 255, 0.60);
	--white-color-opacity-two: rgba(255, 255, 255, 0.10);
	/* #0E0D0B in decimal RGBA */
	--black-color-opacity: rgba(14, 13, 11, 0.60);
	--black-color-opacity-two: rgba(14, 13, 11, 0.10);
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

body {
	width: 100%;
	font-family: var(--body-font);
	font-size: 14px;
	line-height: 24px;
	color: var(--secondary-color);
	background-color: var(--body-color);
}

main {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
}

section {
	position: relative;
	z-index: 1;
}

figure {
	margin: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
	vertical-align: top;
	max-width: 100%;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: none;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

textarea {
	overflow: auto;
}

[type='checkbox'],
[type='radio'] {
	box-sizing: border-box;
	padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}


/*--------------------------------------------------------------
2. Typography
----------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px;
	line-height: 1.2;
}

p {
	font-size: 16px;
	line-height: 26px;
	font-weight: normal;
	margin-bottom: 26px;
}

blockquote {
	border: none;
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary-color);
	margin: 40px 0;
	text-align: center;
	padding: 30px;
	position: relative;
	display: block;
	background: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	border-radius: 6px;
}

blockquote::before {
	color: var(--primary-color);
	content: '\f10d';
	display: block;
	font-family: 'Font Awesome 5 Free';
	font-size: 42px;
	line-height: 1;
	font-style: normal;
	margin-bottom: 15px;
}

blockquote cite {
	color: var(--secondary-color);
	display: block;
	font-style: normal;
	font-size: 13px;
}

iframe {
	display: block;
	width: 100%;
}

/*--------------------------------------------------------------
>>> Heading
--------------------------------------------------------------*/
.title {
	text-align: center;
	margin-bottom: 45px;
}

.title.left {
	text-align: left;
}

.title p {
	margin-top: 25px;
}

.sub-title {
	font-size: 18px;
	line-height: 29px;
	color: var(--dark-color);
	text-transform: capitalize;
	display: block;
	margin-bottom: 3px;
}

.h1-title {
	font-size: 60px;
	line-height: 75px;
	color: var(--dark-color);
	text-transform: capitalize;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.h1-title span {
	color: var(--dark-color);
	;
}

.h2-title {
	font-size: 45px;
	line-height: 60px;
	color: var(--dark-color);
	text-transform: capitalize;
	margin-bottom: 19px;
	position: relative;
}

.h2-title span {
	color: var(--dark-color);
	;
}

.h3-title {
	font-size: 25px;
	line-height: 35px;
	color: var(--dark-color);
	text-transform: capitalize;
	margin-bottom: 15px;
	position: relative;
}

.section-title {
	border-bottom: 1px solid var(--dark-color);
	;
	margin-bottom: 30px;
}

.h4-title {
	font-size: 20px;
	line-height: 30px;
	color: var(--dark-color);
	font-weight: bold;
	margin-bottom: 0;
}

.h4-title span {
	font-size: 30px;
	line-height: 40px;
	color: var(--dark-color);
	;
}

.h5-title {
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	color: var(--dark-color);
	margin-bottom: 5px;
}

.h6-title {
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
	color: var(--dark-color);
	margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
	.h1-title {
		font-size: 50px;
		line-height: 65px;
	}

	.h2-title {
		font-size: 35px;
		line-height: 45px;
	}

	.h3-title {
		font-size: 22px;
		line-height: 32px;
	}
}

@media only screen and (max-width: 400px) {
	.h1-title {
		font-size: 44px;
		line-height: 55px;
	}
}

/*-------------------------------------------------
>>> Helper Class
-------------------------------------------------*/

.p-0 {
	padding: 0 !important;
}

.ptb-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.plr-0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.pt-0 {
	padding-top: 0px !important;
}

.pb-0 {
	padding-bottom: 0px !important;
}

.pl-0 {
	padding-left: 0px !important;
}

.pr-0 {
	padding-right: 0px !important;
}

.p-5 {
	padding: 5px !important;
}

.pt-5 {
	padding-top: 5px !important;
}

.pb-5 {
	padding-bottom: 5px !important;
}

.pl-5 {
	padding-left: 5px !important;
}

.pr-5 {
	padding-right: 5px !important;
}

.ptb-5 {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}

.plr-5 {
	padding-left: 5px !important;
	padding-right: 5px !important;
}


.p-10 {
	padding: 10px !important;
}

.pt-10 {
	padding-top: 10px !important;
}

.pb-10 {
	padding-bottom: 10px !important;
}

.pl-10 {
	padding-left: 10px !important;
}

.pr-10 {
	padding-right: 10px !important;
}

.ptb-10 {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

.plr-10 {
	padding-left: 10px !important;
	padding-right: 10px !important;
}



.p-15 {
	padding: 15px !important;
}

.pt-15 {
	padding-top: 15px !important;
}

.pb-15 {
	padding-bottom: 15px !important;
}

.pl-15 {
	padding-left: 15px !important;
}

.pr-15 {
	padding-right: 15px !important;
}

.ptb-15 {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.plr-15 {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.p-20 {
	padding: 20px !important;
}

.pt-20 {
	padding-top: 20px !important;
}

.pb-20 {
	padding-bottom: 20px !important;
}

.pl-20 {
	padding-left: 20px !important;
}

.pr-20 {
	padding-right: 20px !important;
}

.ptb-20 {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.plr-20 {
	padding-left: 20px !important;
	padding-right: 20px !important;
}


.p-25 {
	padding: 25px !important;
}

.pt-25 {
	padding-top: 25px !important;
}

.pb-25 {
	padding-bottom: 25px !important;
}

.pl-25 {
	padding-left: 25px !important;
}

.pr-25 {
	padding-right: 25px !important;
}

.ptb-25 {
	padding-top: 25px !important;
	padding-bottom: 25px !important;
}

.plr-25 {
	padding-left: 25px !important;
	padding-right: 25px !important;
}


.p-30 {
	padding: 30px !important;
}

.pt-30 {
	padding-top: 30px !important;
}

.pb-30 {
	padding-bottom: 30px !important;
}

.pl-30 {
	padding-left: 30px !important;
}

.pr-30 {
	padding-right: 30px !important;
}

.ptb-30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.plr-30 {
	padding-left: 30px !important;
	padding-right: 30px !important;
}


.p-35 {
	padding: 35px !important;
}

.pt-35 {
	padding-top: 35px !important;
}

.pb-35 {
	padding-bottom: 35px !important;
}

.pl-35 {
	padding-left: 35px !important;
}

.pr-35 {
	padding-right: 35px !important;
}

.ptb-35 {
	padding-top: 35px !important;
	padding-bottom: 35px !important;
}

.plr-35 {
	padding-left: 35px !important;
	padding-right: 35px !important;
}


.p-40 {
	padding: 40px !important;
}

.pt-40 {
	padding-top: 40px !important;
}

.pb-40 {
	padding-bottom: 40px !important;
}

.pl-40 {
	padding-left: 40px !important;
}

.pr-40 {
	padding-right: 40px !important;
}

.ptb-40 {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

.plr-40 {
	padding-left: 40px !important;
	padding-right: 40px !important;
}


.p-45 {
	padding: 45px !important;
}

.pt-45 {
	padding-top: 45px !important;
}

.pb-45 {
	padding-bottom: 45px !important;
}

.pl-45 {
	padding-left: 45px !important;
}

.pr-45 {
	padding-right: 45px !important;
}

.ptb-45 {
	padding-top: 45px !important;
	padding-bottom: 45px !important;
}

.plr-45 {
	padding-left: 45px !important;
	padding-right: 45px !important;
}


.p-50 {
	padding: 50px !important;
}

.pt-50 {
	padding-top: 50px !important;
}

.pb-50 {
	padding-bottom: 50px !important;
}

.pl-50 {
	padding-left: 50px !important;
}

.pr-50 {
	padding-right: 50px !important;
}

.ptb-50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}

.plr-50 {
	padding-left: 50px !important;
	padding-right: 50px !important;
}


.pt-55 {
	padding-top: 55px !important;
}

.pb-55 {
	padding-bottom: 55px !important;
}

.pl-55 {
	padding-left: 55px !important;
}

.pr-55 {
	padding-right: 55px !important;
}

.ptb-55 {
	padding-top: 55px !important;
	padding-bottom: 55px !important;
}

.plr-55 {
	padding-left: 55px !important;
	padding-right: 55px !important;
}


.pt-60 {
	padding-top: 60px !important;
}

.pb-60 {
	padding-bottom: 60px !important;
}

.pl-60 {
	padding-left: 60px !important;
}

.pr-60 {
	padding-right: 60px !important;
}

.ptb-60 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.plr-60 {
	padding-left: 60px !important;
	padding-right: 60px !important;
}


.pt-65 {
	padding-top: 65px !important;
}

.pb-65 {
	padding-bottom: 65px !important;
}

.ptb-65 {
	padding-top: 65px !important;
	padding-bottom: 65px !important;
}

.pt-70 {
	padding-top: 70px !important;
}

.pb-70 {
	padding-bottom: 70px !important;
}

.ptb-70 {
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}


.pt-75 {
	padding-top: 75px !important;
}

.pb-75 {
	padding-bottom: 75px !important;
}

.ptb-75 {
	padding-top: 75px !important;
	padding-bottom: 75px !important;
}


.pt-80 {
	padding-top: 80px !important;
}

.pb-80 {
	padding-bottom: 80px !important;
}

.ptb-80 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}


.pt-85 {
	padding-top: 85px !important;
}

.pb-85 {
	padding-bottom: 85px !important;
}

.ptb-85 {
	padding-top: 85px !important;
	padding-bottom: 85px !important;
}


.pt-90 {
	padding-top: 90px !important;
}

.pb-90 {
	padding-bottom: 90px !important;
}

.ptb-90 {
	padding-top: 90px !important;
	padding-bottom: 90px !important;
}


.pt-100 {
	padding-top: 100px !important;
}

.pb-100 {
	padding-bottom: 100px !important;
}

.ptb-100 {
	padding-top: 100px !important;
	padding-bottom: 100px !important;
}



/* Margin */

.m-0 {
	margin: 0px !important;
}

.mtb-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.mlr-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.mt-0 {
	margin-top: 0px !important;
}

.mb-0 {
	margin-bottom: 0px !important;
}

.ml-0 {
	margin-left: 0px !important;
}

.mr-0 {
	margin-right: 0px !important;
}

.mt-5 {
	margin-top: 5px !important;
}

.mb-5 {
	margin-bottom: 5px !important;
}

.ml-5 {
	margin-left: 5px !important;
}

.mr-5 {
	margin-right: 5px !important;
}

.mtb-5 {
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}

.mlr-5 {
	margin-left: 5px !important;
	margin-right: 5px !important;
}


.mt-10 {
	margin-top: 10px !important;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.ml-10 {
	margin-left: 10px !important;
}

.mr-10 {
	margin-right: 10px !important;
}

.mtb-10 {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.mlr-10 {
	margin-left: 10px !important;
	margin-right: 10px !important;
}


.mt-15 {
	margin-top: 15px !important;
}

.mb-15 {
	margin-bottom: 15px !important;
}

.ml-15 {
	margin-left: 15px !important;
}

.mr-15 {
	margin-right: 15px !important;
}

.mtb-15 {
	margin-top: 15px !important;
	margin-bottom: 15px !important;
}

.mlr-15 {
	margin-left: 15px !important;
	margin-right: 15px !important;
}


.mt-20 {
	margin-top: 20px !important;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.ml-20 {
	margin-left: 20px !important;
}

.mr-20 {
	margin-right: 20px !important;
}

.mtb-20 {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}

.mlr-20 {
	margin-left: 20px !important;
	margin-right: 20px !important;
}


.mt-25 {
	margin-top: 25px !important;
}

.mb-25 {
	margin-bottom: 25px !important;
}

.ml-25 {
	margin-left: 25px !important;
}

.mr-25 {
	margin-right: 25px !important;
}

.mtb-25 {
	margin-top: 25px !important;
	margin-bottom: 25px !important;
}

.mlr-25 {
	margin-left: 25px !important;
	margin-right: 25px !important;
}


.mt-30 {
	margin-top: 30px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.ml-30 {
	margin-left: 30px !important;
}

.mr-30 {
	margin-right: 30px !important;
}

.mtb-30 {
	margin-top: 30px !important;
	margin-bottom: 30px !important;
}

.mlr-30 {
	margin-left: 30px !important;
	margin-right: 30px !important;
}


.mt-35 {
	margin-top: 35px !important;
}

.mb-35 {
	margin-bottom: 35px !important;
}

.ml-35 {
	margin-left: 35px !important;
}

.mr-35 {
	margin-right: 35px !important;
}

.mtb-35 {
	margin-top: 35px !important;
	margin-bottom: 35px !important;
}

.mlr-35 {
	margin-left: 35px !important;
	margin-right: 35px !important;
}


.mt-40 {
	margin-top: 40px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.ml-40 {
	margin-left: 40px !important;
}

.mr-40 {
	margin-right: 40px !important;
}

.mtb-40 {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}

.mlr-40 {
	margin-left: 40px !important;
	margin-right: 40px !important;
}


.mt-45 {
	margin-top: 45px !important;
}

.mb-45 {
	margin-bottom: 45px !important;
}

.ml-45 {
	margin-left: 45px !important;
}

.mr-45 {
	margin-right: 45px !important;
}

.mtb-45 {
	margin-top: 45px !important;
	margin-bottom: 45px !important;
}

.mlr-45 {
	margin-left: 45px !important;
	margin-right: 45px !important;
}


.mt-50 {
	margin-top: 50px !important;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.ml-50 {
	margin-left: 50px !important;
}

.mr-50 {
	margin-right: 50px !important;
}

.mtb-50 {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}

.mlr-50 {
	margin-left: 50px !important;
	margin-right: 50px !important;
}


.mt-55 {
	margin-top: 55px !important;
}

.mb-55 {
	margin-bottom: 55px !important;
}

.ml-55 {
	margin-left: 55px !important;
}

.mr-55 {
	margin-right: 55px !important;
}

.mtb-55 {
	margin-top: 55px !important;
	margin-bottom: 55px !important;
}

.mlr-55 {
	margin-left: 55px !important;
	margin-right: 55px !important;
}


.mt-60 {
	margin-top: 60px !important;
}

.mb-60 {
	margin-bottom: 60px !important;
}

.ml-60 {
	margin-left: 60px !important;
}

.mr-60 {
	margin-right: 60px !important;
}

.mtb-60 {
	margin-top: 60px !important;
	margin-bottom: 60px !important;
}

.mlr-60 {
	margin-left: 60px !important;
	margin-right: 60px !important;
}


.mt-70 {
	margin-top: 70px !important;
}

.mb-70 {
	margin-bottom: 70px !important;
}

.mtb-70 {
	margin-top: 70px !important;
	margin-bottom: 70px !important;
}


.mt-75 {
	margin-top: 75px !important;
}

.mb-75 {
	margin-bottom: 75px !important;
}

.mtb-75 {
	margin-top: 75px !important;
	margin-bottom: 75px !important;
}


.mt-80 {
	margin-top: 80px !important;
}

.mb-80 {
	margin-bottom: 80px !important;
}

.mtb-80 {
	margin-top: 80px !important;
	margin-bottom: 80px !important;
}


.mt-85 {
	margin-top: 85px !important;
}

.mb-85 {
	margin-bottom: 85px !important;
}

.mtb-85 {
	margin-top: 85px !important;
	margin-bottom: 85px !important;
}


.mt-90 {
	margin-top: 90px !important;
}

.mb-90 {
	margin-bottom: 90px !important;
}

.mtb-90 {
	margin-top: 90px !important;
	margin-bottom: 90px !important;
}


.mt-100 {
	margin-top: 100px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}

.mtb-100 {
	margin-top: 100px !important;
	margin-bottom: 100px !important;
}

.mtb-100 {
	margin-top: 100px !important;
	margin-bottom: 100px !important;
}

/* # background color */
.white-bg {
	background-color: var(--white-color)
}

.black-bg {
	background-color: var(--black-color)
}

/* # color */
.white-color {
	color: var(--white-color);
}

.black-color {
	color: var(--black-color);
}

.theme-color {
	color: var(--primary-color) !important;
}

.primary-color {
	color: var(--secondary-color)
}

.secondary-color {
	color: var(--secondary-color);
}

.color-extra01 {
	color: var(--color-extra01) !important;
}

.two-line-ellipsis {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 36px;
}

.three-line-ellipsis {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 56px;
}

/*--------------------------------------------------------------
>>> Lists
--------------------------------------------------------------*/
ul,
ol {
	list-style: disc;
	margin: 0;
	padding: 0;
}

ol {
	list-style: decimal;
}

li {
	list-style: none;
}

li>ul,
li>ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

/*--------------------------------------------------------------
>>> Links
--------------------------------------------------------------*/
a {
	color: var(--primary-color);
	text-decoration: none;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

a,
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

a:hover,
a:focus,
a:active {
	color: var(--primary-color);
	text-decoration: none;
	outline: 0;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

a:visited {
	text-decoration: none;
	outline: 0;
}

/*--------------------------------------------------------------
3. Table
----------------------------------------------------------------*/
table {
	color: var(--secondary-color);
	margin: 0 0 1.5em;
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	width: 100%;
	font-size: 15px;
}

table thead tr {
	background-color: var(--secondary-color);
}

table thead tr th {
	color: var(--white-color)
}

table.table {
	color: var(--secondary-color);
}

th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

td {
	border-width: 0 1px 1px 0;
	border-bottom: 1px solid var(--border-color);
}

th,
td {
	padding: 8px;
}

/*--------------------------------------------------------------
4. Form
----------------------------------------------------------------*/

form {
	position: relative;
}

input,
input:focus,
input:hover,
button,
button:hover,
button:focus {
	outline: none;
}

.form-control {
	width: 100%;
	height: 46px;
	background: var(--white-color);
	line-height: 26px;
	color: var(--secondary-color);
	border: none;
	outline: none;
	padding: 5px 15px;
	border-radius: 6px;
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
}

textarea.form-control {
	height: 140px !important;
	resize: none;
	padding: 12px 20px;
	margin-bottom: 0;
}

.form-control::placeholder {
	opacity: 1;
}

select {
	border: 1px solid var(--border-color);
	color: var(--secondary-color);
	height: 60px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	border-radius: 6px;
	padding: 0 30px 0 10px;
}

select:focus {
	outline: none;
}

form label {
	font-weight: normal;
}

input.error,
select.error,
textarea.error {
	border-color: #ff0000 !important;
}

label.error {
	color: #ff0000;
}

.nice-select {
	font-size: 16px;
	font-weight: 400;
	color: var(--secondary-color);
}

.nice-select .list {
	width: 100%;
}

span.current {
	line-height: 36px;
}

/*-------------------------------------------------
5. Progress Wrap 
-------------------------------------------------*/
.progress-wrap {
	position: fixed;
	right: 20px;
	bottom: 40px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	background: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-ms-transform: translateY(15px);
	-o-transform: translateY(15px);
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.progress-wrap i {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: auto;
	color: var(--primary-color);
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--primary-color);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}

/*-------------------------------------------------
6. Loader
-------------------------------------------------*/
.loader-box {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: var(--secondary-color);
	z-index: 999;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	bottom: 50%;
	right: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background: var(--primary-color);
	animation: rotation 5s ease-in-out infinite;
}

.loader::after {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	background: var(--white-color);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	text-align: center;
	border-radius: 50px;
}

/*-------------------------------------------------
7. Animations 
-------------------------------------------------*/
.animation-bounce {
	-webkit-animation: 3s linear bounce infinite;
	-moz-animation: 3s linear bounce infinite;
	animation: 3s linear bounce infinite;
}

@keyframes bounce {

	0%,
	50%,
	100% {
		transform: scaleY(1);
		border-radius: 50%;
	}

	25%,
	75% {
		transform: translateY(-100px) rotateY(360deg) scaleX(0.66) scaleY(1.25);
		border-radius: 50%;
	}

	15%,
	40%,
	65%,
	90% {
		transform: translateY(10px) scaleX(1.25) scaleY(0.5);
		border-bottom-left-radius: 25%;
		border-bottom-right-radius: 25%;
	}
}

.animation-scroll-down {
	-webkit-animation: 3s linear scroll-down infinite;
	-moz-animation: 3s linear scroll-down infinite;
	animation: 3s linear scroll-down infinite;
}

@keyframes scroll-down {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(0);
	}
}

.animation-moveleft {
	-webkit-animation: moveleft 5s linear infinite;
	animation: moveleft 5s linear infinite;
}

@keyframes moveleft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	50% {
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes checked-box {
	0% {
		width: 0;
		height: 0;
		border-color: var(--white-color);
		transform: translate(0, 0) rotate(45deg);
	}

	33% {
		width: 4px;
		height: 0;
		border-color: var(--white-color);
		transform: translate(0, 0) rotate(45deg);
	}

	100% {
		width: 4px;
		height: 8px;
		border-color: var(--white-color);
		transform: translate(0, -8px) rotate(45deg);
	}
}

@keyframes bounce {
	0% {
		transform: scale(1);
	}

	33% {
		transform: scale(.7);
	}

	100% {
		transform: scale(1);
	}
}

@-webkit-keyframes ripple {
	70% {
		box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
	}
}

@keyframes ripple {
	70% {
		box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);
	}
}


@keyframes rotation {
	0% {
		border-radius: 5% 5% 5% 5%;
		transform: translate(-50%, -50%) rotate(0deg)
	}

	12.5% {
		border-radius: 50% 5% 5% 5%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	25% {
		border-radius: 50% 50% 5% 5%;
		transform: translate(-50%, -50%) rotate(90deg);
	}

	37.5% {
		border-radius: 50% 50% 50% 5%;
		transform: translate(-50%, -50%) rotate(135deg);
	}

	50% {
		border-radius: 50% 50% 50% 50%;
		transform: translate(-50%, -50%) rotate(180deg);
	}

	62.5% {
		border-radius: 5% 50% 50% 50%;
		transform: translate(-50%, -50%) rotate(225deg);
	}

	75% {
		border-radius: 5% 5% 50% 50%;
		transform: translate(-50%, -50%) rotate(270deg);
	}

	87.5% {
		border-radius: 5% 5% 5% 50%;
		transform: translate(-50%, -50%) rotate(315deg);
	}

	100% {
		border-radius: 5% 5% 5% 5%;
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes moving {
	from {
		transform: translate(0, -5px);
	}

	to {
		transform: translate(0, 5px);
	}
}

.animation-rotateIt {
	-webkit-animation: rotateIt 11s linear infinite;
	-moz-animation: rotateIt 11s linear infinite;
	animation: rotateIt 11s linear infinite;
}

@-webkit-keyframes rotateIt {
	to {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes rotateIt {
	to {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

/*-------------------------------------------------
8. Buttons
-------------------------------------------------*/
.buttons {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-width: 170px;
	height: 46px;
	background: var(--primary-color);
	border: none;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
	font-size: 16px;
	line-height: 26px;
	color: var(--white-color);
	font-weight: 500;
	font-family: var(--title-font);
	text-transform: capitalize;
	overflow: hidden;
	position: relative;
	text-align: center;
	padding: 5px 20px;
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	outline: none;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.buttons span {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.buttons:hover {
	color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	opacity: 0.8;
}

.buttons::after {
	content: '';
	background: var(--white-color);
	height: 155px;
	opacity: 0;
	position: absolute;
	top: -50px;
	-webkit-transform: rotate(55deg);
	-moz-transform: rotate(55deg);
	-ms-transform: rotate(55deg);
	-o-transform: rotate(55deg);
	transform: rotate(55deg);
	-webkit-transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 60px;
	left: -100%;
}

.buttons:hover::after {
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	color: #fff;
	-webkit-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	left: 200%;
	opacity: 0.6;
}


/*-------------------------------------------------
9 owl Button and Pagination Style
-------------------------------------------------*/
/* owl nav */
.owl-prev span,
.owl-next span {
	color: var(--white-color);
}

.owl-prev,
.owl-next {
	position: absolute;
	top: 50%;
	display: inline-block;
	vertical-align: top;
	width: 35px;
	height: 35px;
	color: var(--white-color) !important;
	text-align: center;
	border-radius: 0%;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.owl-prev::before,
.owl-next::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--white-color);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.owl-prev:hover::before,
.owl-next:hover::before {
	background: var(--white-color);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.owl-prev:hover i,
.owl-next:hover i {
	color: var(--primary-color);
	position: relative;
}

.owl-prev {
	left: 30px;
}

.owl-next {
	right: 30px;
}

/* owl dot */
.owl-dots {
	text-align: center;
}

.owl-dots button.owl-dot {
	height: 5px;
	width: 30px;
	background: var(--white-color);
	margin: 0 5px;
	border-radius: 0;
}

.owl-dots button.owl-dot.active {
	background: var(--primary-color);
}

/* removing blue outline from buttons */
button:focus,
button:active {
	outline: none;
}


/*-------------------------------------------------
10. Header
-------------------------------------------------*/
header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 0;
	z-index: 100;
	background: var(--white-color);
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}


.main-header {
	position: relative;
}


.main-logo a img {
	width: 184px;
}

/* header-topbar */
.header-topbar {
	background-color: var(--dark-color);
}

.header-topbar-social {
	margin-right: 60px;
}

.header-topbar-social ul::after {
	height: 1px;
	width: 30px;
	background-color: var(--white-color);
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	margin-left: 20px;
	margin-top: -1px;
}

.header-topbar-social ul li {
	list-style: none;
	line-height: 1;
	margin-left: 10px;
}

.header-topbar-social ul li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid var(--white-color);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	color: var(--white-color);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.header-topbar-social ul li a:hover {
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: var(--white-color);
}

.header-topbar-info {
	margin-left: auto;
}

.header-topbar-info:hover a,
.header-topbar-info:hover a::after {
	background-color: var(--primary-color);
}

.header-topbar-info a {
	background-color: var(--dark-color);
	padding: 0 30px 0 40px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 53px;
	line-height: 53px;
	font-size: 16px;
	color: var(--white-color);
	text-transform: uppercase;
	font-weight: 600;
	-webkit-clip-path: polygon(9% 0, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(9% 0, 100% 0%, 100% 100%, 0% 100%);
}

.header-topbar-info a img {
	width: 26px;
	margin-right: 15px;
	z-index: 1;
}

.header-topbar-btn a {
	text-align: center;
	padding: 0 30px 0 20px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	background-color: var(--primary-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 53px;
	line-height: 53px;
	font-size: 16px;
	color: var(--white-color);
	text-transform: uppercase;
	font-weight: 600;
}

.header-topbar-btn a img {
	width: 22px;
	margin-right: 15px;
	z-index: 1;
	-moz-filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
	-o-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.header-topbar-btn a:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.header-account-btn {
	position: relative;
	color: var(--dark-color);
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--white-color);
	text-align: center;
	border-radius: 50px;
	padding: 10px;
	color: var(--black-color);
	background: var(--color-extra01);
	border: 1px solid var(--border-color);
	margin-right: 15px;

}

.header-account-btn:hover {
	background: var(--primary-color);
}

.header-account-btn img {
	width: 22px;
}

.header-account-btn:hover img {
	-moz-filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
	-o-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.header-schedule .login-btn {
	position: relative;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 8px 20px;
	border-radius: 10px;
	color: var(--white-color);
	background: var(--primary-color);
	text-transform: uppercase;
}

.schedule-btn {
	position: relative;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 8px 30px;
	border-radius: 50px;
	color: var(--black-color);
	background: var(--color-extra01);
	border: 1px solid var(--border-color);
	margin-right: 15px;
}

.schedule-btn img {
	display: none;
}

/* mobile menu trigger Start*/
.mobile-menu-trigger {
	line-height: 1;
	cursor: pointer;
	display: none;
	background: transparent;
	border: none;
}

.mobile-menu-trigger-btn {
	width: 20px;
	height: 20px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.mobile-menu-trigger span {
	height: 2px;
	display: block;
	width: 20px;
	margin-bottom: 5px;
	background-color: var(--black-color);
}

.mobile-menu-trigger span:last-child {
	margin-bottom: 0;
}

/* mobile menu trigger End */


/* header-menu  */

.main-header.sticky {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	top: 0;
	background: var(--white-color);
	left: 0;
	z-index: 99;
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.main-header-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.bottom-search-area {
	position: relative;
}

.bottom-search-area .form-control {
	color: var(--black-color);
	background: var(--color-extra01);
	border: 1px solid var(--border-color);
	border-radius: 50px;
	width: 260px;
	padding-left: 20px;
	padding-right: 60px;
	box-shadow: none;
}

.bottom-search-area button.search {
	position: absolute;
	top: 10px;
	right: 20px;
	border: none;
	background: transparent;
}

/* main-menu */
.header-menu {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-menu .header-main-menu .header-menu-items {
	position: relative;
	list-style: none;
	line-height: 1;
	margin-bottom: 0;
}

.header-menu .header-main-menu .header-menu-items .newtxt {
	position: absolute;
	top: -4px;
	right: -4px;
	background-color: #ffffff94;
	padding: 0 3px;
	border-radius: 2px;

}

.animate-charcter {
	background-image: linear-gradient(-225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 2s linear infinite;
	display: inline-block;
	color: #ffffff;
	margin: 0;
	font-size: 12px;
	line-height: 12px;
	padding: 3px;
}

@keyframes textclip {
	to {
		background-position: 200% center;
	}
}

.header-menu .header-main-menu .header-menu-items .header-menu-link {
	color: var(--dark-color);
	position: relative;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 2px 14px;
	border-radius: 10px;
	height: 100%;
}

.header-menu .header-main-menu .header-menu-items .header-menu-link img {
	width: 22px;
	height: 22px;
}

.header-menu .header-main-menu .header-menu-items .header-menu-link::after {
	width: 0%;
	height: 2px;
	position: absolute;
	left: 50%;
	bottom: -5px;
	content: '';
	background: var(--primary-color);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.header-menu .header-main-menu .header-menu-items:hover .header-menu-link::after,
.header-menu .header-main-menu .header-menu-items .header-menu-link.current::after {
	width: 100%;
}

.header-menu .header-main-menu .header-menu-items:hover a.header-menu-link,
.header-menu .header-main-menu .header-menu-items .header-menu-link.current {
	color: var(--primary-color);
}

.header-menu .header-main-menu .header-menu-link:hover img,
.header-menu .header-main-menu .header-menu-link.current img {
	filter: brightness(0) invert(1);
}

.apply-now-btn {
	background: var(--primary-color);
	border-radius: 5px !important;
	padding: 10px 30px;
	color: var(--white-color) !important;
	/* margin-left: 50px !important; */
	margin-right: 0 !important;
}

.apply-now-btn::after {
	display: none;
}

/* sub-menu */
.header-menu .header-main-menu .header-sub-menu a:hover,
.header-menu .header-main-menu .header-sub-menu a.current,
.header-menu .header-main-menu .header-sub-menu .header-sub-menu-items:hover .header-sub-menu-link {
	background: var(--primary-color) !important;
	color: var(--white-color) !important;
}

.header-menu .header-main-menu .header-sub-menu a:hover img,
.header-menu .header-main-menu .header-sub-menu a.current img,
.header-menu .header-main-menu .header-sub-menu .header-sub-menu-items:hover img {
	filter: brightness(0) invert(1);
}

.header-menu .header-main-menu .header-sub-menu,
.header-menu .header-main-menu .header-sub-menu .header-sub-menu-items .header-sub-sub-menu {
	margin-left: 0;
	position: absolute;
	z-index: 99;
	top: 100%;
	left: 0;
	visibility: hidden;
	width: 220px;
	margin: 0;
	margin-top: 20px;
	list-style: none;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	opacity: 0;
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
}

.header-menu .header-main-menu .header-menu-items:hover .header-sub-menu,
.header-menu .header-main-menu .header-sub-menu .header-sub-menu-items:hover .header-sub-sub-menu {
	visibility: visible;
	margin-top: 0;
	opacity: 1;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}

.header-menu .header-main-menu .header-sub-menu .header-sub-menu-items .header-sub-sub-menu {
	top: 0;
	left: 100%;
}

.header-menu .header-main-menu .header-sub-menu .header-sub-menu-items .header-sub-menu-link i {
	position: absolute;
	right: 15px;
	font-size: 12px;
	top: 40%;
}

.header-menu .header-main-menu .header-sub-menu .header-sub-menu-items .header-sub-menu-link,
.header-menu .header-main-menu .header-sub-menu .header-sub-menu-items .header-sub-sub-menu .header-sub-sub-menu-items .header-sub-sub-menu-link {
	display: block;
	padding: 15px;
	border-bottom: 1px dashed var(--border-color);
	color: var(--dark-color);
	font-weight: 600;
	font-size: 16px;
	align-items: center;
	display: flex;
	gap: 15px;
}

/* mega-menu */

.header-menu .header-main-menu .header-menu-items.mega-menu-items {
	position: static;
}

.header-menu .header-main-menu .header-mega-menu {
	position: absolute;
	z-index: 99;
	top: 100%;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	margin-top: 20px;
	padding: 25px;
	list-style: none;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	visibility: hidden;
	opacity: 0;
	background-color: var(--white-color);
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
}

.header-menu .header-main-menu .header-menu-items:hover .header-mega-menu {
	visibility: visible;
	margin-top: 0;
	opacity: 1;
}

.header-menu .header-main-menu .header-mega-menu .header-mega-menu-items {
	width: 25%;
}



.mobile-menu-container {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--secondary-color);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: auto;
}

.mobile-menu-container li {
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(100px);
	-ms-transform: translateX(100px);
	-moz-transform: translateX(100px);
	-o-transform: translateX(100px);
	transform: translateX(100px);
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	border-top: 1px solid rgb(0 0 0 / 8%);
}

/* .mobile-menu-container .header-menu-items:nth-last-child(1) {
	border-bottom: 1px solid rgb(0 0 0 / 8%);
} */

.mobile-menu-container li>a .slicknav_arrow::after {
	margin: 0 auto;
	font-size: 14px;
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	content: "\f067";
}

.mobile-menu-container.menu-open li.slicknav_open>a .slicknav_arrow::after {
	content: "\f068";
}

.mobile-menu-container.menu-open {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.mobile-menu-container.menu-open li {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.mobile-menu-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 15px 15px;
}

.mobile-menu-logo img {
	width: 160px;
}

.mobile-menu-close {
	width: 40px;
	height: 40px;
	z-index: 1;
	text-indent: -9999px;
	position: relative;
	color: var(--dark-color);
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--white-color);
	text-align: center;
	-webkit-border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	-moz-border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	-ms-border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	-o-border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	-webkit-box-shadow: var(--box-shadow);
	-moz-box-shadow: var(--box-shadow);
	-ms-box-shadow: var(--box-shadow);
	-o-box-shadow: var(--box-shadow);
	box-shadow: var(--box-shadow);
	font-size: 0;
}

.mobile-menu-close::before {
	left: 19px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mobile-menu-close::after {
	right: 19px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
	position: absolute;
	height: 20px;
	width: 2px;
	background: var(--primary-color);
	content: '';
	top: 10px;
}

#mobile-menu-wrap {
	position: relative;
	padding: 0 10px 0 15px;
	margin-bottom: 30px;
}

#mobile-menu-wrap div {
	background-color: transparent;
}

#mobile-menu-wrap .slicknav_item i {
	display: none;
}

.mobile-menu-contact {
	position: relative;
	padding: 0 15px;
	margin-bottom: 30px;
}

.mobile-menu-title {
	font-size: 25px;
	line-height: 35px;
	color: var(--dark-color);
	font-weight: bold;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.mobile-menu-contact ul li {
	border: none !important;
}

.mobile-menu-contact ul li:not(:last-child) {
	margin-bottom: 20px;
}

.mobile-menu-contact-icon {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	font-size: 16px;
	color: var(--white-color);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);

}

.mobile-menu-contact ul li a {
	color: var(--dark-color);
	display: inline-block;
	font-size: 16px;
	position: relative;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);

}

.mobile-menu-contact-text {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}



/*Sidebar Start*/
.slicknav_nav .slicknav_parent .current,
.slicknav_nav .header-menu-link.current {
	color: var(--primary-color) !important;
}

.slicknav_nav,
.slicknav_nav.slicknav_hidden {
	display: block !important;
}

.slicknav_btn {
	display: none !important;
}

.slicknav_menu {
	padding-left: 0;
}

.slicknav_menu .header-sub-menu .header-sub-menu-link,
.slicknav_menu .header-mega-menu-items .header-mega-menu-link {
	margin-left: 20px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
	padding: 10px 0px;
	margin: 0 !important;
	color: var(--dark-color) !important;
	position: relative;
	font-weight: 600;
	font-size: 16px;
	padding-left: 0;
}

.slicknav_nav .header-menu-link.apply-now-btn {
	text-align: center;
	margin-top: 30px !important;
}

.slicknav_nav .slicknav_arrow {
	font-size: 0;
	top: 6px;
	width: 30px;
	height: 30px;
	background-color: var(--primary-color);
	color: var(--white-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	-moz-border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	-ms-border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	-o-border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
	border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
}

.slicknav_nav ul {
	margin: 0;
}

.slicknav_nav .menu-item-has-children ul {
	margin-bottom: 0;
}

.slicknav_nav .menu-item-has-children ul li {
	padding-left: 25px;
}

.sub-menu .menu-item-has-children a i {
	position: absolute;
	right: 14px;
	top: 15px;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
	border-radius: 0;
}

.slicknav_nav ul.header-sub-sub-menu a.header-sub-sub-menu-link {
	padding-left: 35px;
}

.slicknav_arrow {
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	right: 0;
	top: 17px;
	position: absolute;
}

/*Sidebar End*/

.mobile-search {
	display: none;
}

/*--------------------------------------------
12. Footer 
--------------------------------------------*/

/*--------------------------------------------
13. Home Page Section
--------------------------------------------*/

/* banner */
.banner-style-one .slide {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 300px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	min-height: 870px;
}

.banner-style-one .slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.39);
}

.banner-style-one .container {
	position: relative;
	overflow: hidden;
}

.banner-style-one .content {
	position: relative;
	display: block;
	width: 100%;
	z-index: 10;
}

.banner-style-one .content span {
	position: relative;
	display: block;
	overflow: hidden;
	color: var(--white-color);
	font-family: var(--body-font);
	font-size: 18px;
	opacity: 0;
	-webkit-transform: perspective(400px) rotateX(0deg) translateY(80px);
	-ms-transform: perspective(400px) rotateX(0deg) translateY(80px);
	transform: perspective(400px) rotateX(0deg) translateY(80px);
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-style-one .active .content span {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
	-ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
	transform: perspective(400px) rotateX(0deg) translateY(0px);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

.banner-style-one .content .pattern-image {
	-webkit-transform: perspective(400px) rotateX(0deg) translateY(80px);
	-ms-transform: perspective(400px) rotateX(0deg) translateY(80px);
	transform: perspective(400px) rotateX(0deg) translateY(80px);
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	margin: 25px 0;
	width: 80px;
	opacity: 0;
}

.banner-style-one .active .content .pattern-image {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateX(0deg) translateY(0px);
	-ms-transform: perspective(400px) rotateX(0deg) translateY(0px);
	transform: perspective(400px) rotateX(0deg) translateY(0px);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

.banner-style-one .content .big-title {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 10px;
	opacity: 0;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
	transform: perspective(400px) rotateY(0deg) translateY(-120px);
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	text-align: center;
}

.banner-style-one .active .content .big-title {
	opacity: 1;
	-webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
	-ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
	transform: perspective(400px) rotateY(0deg) translateY(0px);
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
}

.banner-style-one .content .big-title h1 {
	color: var(--white-color);
	font-family: var(--title-font);
	font-size: 32px;
	margin-bottom: 0;
}

.slider-shape {
	background: var(--color-extra05);
	display: inline-block;
	padding: 5px 30px;
	margin: 0 25px;
	text-align: center;
	border-radius: 7px;
	position: relative;
	z-index: 2;
}

.slider-shape2 {
	background: var(--bg-color);
	display: inline-block;
	padding: 60px 30px 30px 30px;
	margin-top: -40px;
	clip-path: polygon(0 19%, 100% 0%, 100% 99%, 0% 100%);
}

.slider-shape2 p {
	font-size: 14px;
	line-height: normal;
	margin-bottom: 0;
	text-align: center;
}

/* fun-factor-area */


.fun-factor-area .row {
	margin: 0 -30px;
	border-radius: 15px;
}

.fun-factor-area .fun-factor-box {
	margin-bottom: 25px;
}

.fun-factor-area .fun-factor-box .inner {
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	/* background: rgba(211, 211, 211, 0.30); */
	border-radius: 15px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.fun-factor-area .fun-factor-box .inner .fun-factor-count {
	float: left;
	position: relative;
	line-height: 30px;
	font-size: 32px;
	font-weight: 600;
	color: var(--primary-color);
}

.fun-factor-area .fun-factor-box .inner .fun-factor-count i {
	font-style: normal;
}

.fun-factor-area .fun-factor-box .inner .fun-factor-content {
	position: relative;
	float: left;
	width: 100%;
	margin-left: 0;
}

.fun-factor-area .fun-factor-box .inner .fun-factor-icon {
	position: absolute;
	left: 20px;
}

.fun-factor-area .fun-factor-box .inner .fun-factor-icon img {
	width: 50px;
}

.fun-factor-area .fun-factor-box .inner .fun-factor-count,
.fun-factor-area .fun-factor-box .inner .fun-factor-content {
	padding-left: 60px;
}

.ff-style-2 {
	margin-top: 0;
}

.ff-style-2 .row {
	background: transparent;
	box-shadow: none !important;
	border-radius: 0;
}


.boxes-content-col {
	/* background: var(--white-color); */
	padding: 0;
}

.boxes-content-col .item {
	position: relative;
	display: block;
	/* max-width: 600px; */
	padding-top: 10px;
	padding-bottom: 120px;
	padding-left: 60px;
	padding-right: 60px;

}

.boxes-image-col {
	padding: 0;
}

.boxes-image-col .item {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.boxes-image-col .item .image {
	position: relative;
}

.boxes-image-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 97%;
}

.video-area {
	background: var(--black-color);
}

.video-media-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	opacity: 0.40;
}

.video-area .intro-content-box {
	position: relative;
}

.play-btn {
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	margin: 0 auto;
}

.play-btn a {
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	text-align: center;
	line-height: 86px;
	font-size: 18px;
	color: var(--color-extra05);
	border: 2px solid var(--color-extra05);
	border-radius: 50%;
}

.play-btn a .play-ripple {
	position: absolute;
	top: 0%;
	left: 0%;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin-top: -1px;
	margin-left: -1px;
	-webkit-box-shadow: 0 0 0 0 var(--white-color-opacity);
	-moz-box-shadow: 0 0 0 0 var(--white-color-opacity);
	-ms-box-shadow: 0 0 0 0 var(--white-color-opacity);
	-o-box-shadow: 0 0 0 0 var(--white-color-opacity);
	box-shadow: 0 0 0 0 var(--white-color-opacity);
	-webkit-animation: ripple 3s infinite;
	-moz-animation: ripple 3s infinite;
	-ms-animation: ripple 3s infinite;
	-o-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.video-quotes {
	text-align: center;
	max-width: 630px;
	margin: 80px auto 0;
}

.video-quotes h4 {
	line-height: normal;
	margin-bottom: 30px;
}

.learn-more-btn {
	margin-top: 30px;
	text-decoration: underline;
	display: inline-block;
}

.ss-video-media {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	overflow: hidden;
}

.ss-video-media .play-btn {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	height: auto;
}

/*.ss-video-media-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
	opacity: 0.8;
}*/

.ss-video-media .play-btn a .play-ripple {
	animation: none;
}

.ss-video-media-background img {
	height: 330px;
	object-fit: cover;
	width: 100%;
}

.shap-area {
	position: absolute;
	width: 100%;
}

.shap-area img {
	width: 170px;
}

.shap-area .shap-2 {
	position: absolute;
	right: 0;
	top: -220px;
}

.news-item {
	margin-bottom: 20px;
	display: grid;
	grid-template-columns: 160px auto;
	position: relative;
	grid-gap: 20px;
}

.news-thumbe {
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	width: 100%;
}

.news-thumbe a {
	height: 100%;
	position: relative;
	display: inline-block;
	/* background: var(--border-color); */
	overflow: hidden;
	border-radius: 10px;
	width: 100%;

}

.news-thumbe a img {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	object-fit: cover;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.news-item:hover .news-thume img {
	transform: scale(1.2);
	transition: var(--transition);
}

.news-tags {
	font-size: 12px;
	margin: 0 0 10px 0;
	border-radius: 30px;
	display: inline-block;
	color: var(--primary-color);
	line-height: normal;
}

.news-title {
	font-size: 18px;
	line-height: normal;
}

.news-title a {
	color: var(--secondary-color);
}

.news-meta-info-ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.news-meta-info-ul li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.news-meta-info-ul li+li {
	padding-left: 10px;
}

.news-meta-info-ul li span,
.news-meta-info-ul li a {
	font-size: 14px;
	color: var(--color-extra02);
}

.news-meta-info-ul li a:hover {
	color: var(--primary-color);
}

.single-news {
	position: relative;
	height: calc(100% - 20px);
	border-radius: 10px;
	overflow: hidden;
}

.single-news-media-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.8;
}

.single-news:after {
	content: "";
	width: 100%;
	height: 50%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.single-news .news-content {
	position: absolute;
	bottom: 20px;
	z-index: 1;
	left: 20px;
}

.subscribe-area .form-control {
	height: 58px;
}

.subscribe-area button.SubScribe {
	position: absolute;
	bottom: 0;
	top: 0;
	right: 5px;
	background: var(--primary-color);
	width: 120px;
	border: none;
	height: 46px;
	margin: auto;
	border-radius: 5px;
	color: var(--white-color);
}


.footer-area {
	margin-top: -1px;
	background-color: var(--color-extra01);
}

.footer-top {
	position: relative;
}

.footer-top .logo-widget {
	position: relative;
	width: 100%;
}

.footer-top .logo-widget .footer-logo {
	margin-bottom: 30px;
}

.footer-top .social-link .widget-content ul li {
	position: relative;
	display: inline-block;
	margin: 3px;
}

.footer-top .social-link .widget-content ul li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	color: var(--white-color);
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid var(--border-color);
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}

.footer-top .social-link .widget-content ul li a:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.footer-top .widget-title {
	position: relative;
	display: block;
	margin-bottom: 10px;
}

.footer-top .widget-title h3 {
	color: var(--white-color);
}

.footer-top .links-widget .links-list li {
	position: relative;
	display: block;
	margin-bottom: 5px;
}


.footer-top .links-widget .links-list li:last-child {
	margin-bottom: 0;
}

.footer-top .links-widget .links-list li a {
	position: relative;
	display: inline-block;
	color: var(--white-color);
	opacity: 0.8;

}

.footer-top .links-widget .links-list li a:hover {
	opacity: 1;
}

.footer-top .links-widget .links-list li a:before {
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	left: 0;
	bottom: 3px;
	opacity: 0;
	background: var(--white-color);
	-webkit-transition: var(--transition);
	-moz-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.footer-top .links-widget .links-list li a:hover:before {
	width: 100%;
	opacity: 1;
}

.footer-top .contact-widget .info li {
	position: relative;
	display: block;
	font-size: 15px;
	line-height: 26px;
	color: var(--white-color);
	margin-bottom: 19px;
}

.footer-top .contact-widget .info li:last-child {
	margin-bottom: 0;
}

.footer-top .contact-widget .info li a {
	color: var(--white-color);
	opacity: 0.8;
	position: relative;
	padding-left: 30px;
	display: inline-block;
}

.footer-top .contact-widget .info li a:hover {
	color: var(--primary-color);
	opacity: 1;
}

.footer-top .contact-widget .info li a i {
	width: 25px;
	position: absolute;
	left: 0;
	top: 6px;
}

.footer-right-column {
	display: grid;
	grid-template-columns: 220px 220px auto;
	position: relative;
	grid-gap: 20px;
}



/* .boxes-content-col .item:after {
    content: "";
    background: url(../../assets/images/shape/shape_1.png);
    height: 250px;
    width: 250px;
    background-size: 250px;
	position: absolute;
    top: 0;
    bottom: 0;
} */



/*-------------------------------------------------
. Inner Banner Section
-------------------------------------------------*/
.inner-banner {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	background: var(--secondary-color);
}

.inner-banner .image-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.40;
}

.inner-banner .inner {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	z-index: 5;
}

.inner-banner .inner .in-subtitle {
	margin-bottom: 10px;
}

.inner-banner .inner .pattern-image {
	margin-bottom: 15px;
}

.inner-banner .inner h1 {
	position: relative;
	font-weight: 400;
	font-size: 42px;
	text-transform: none;
	line-height: 1.0em;
	margin: 0;
	color: var(--white-color);
}

.inner-banner .inner h1 span {
	position: relative;
	display: inline-block;
	vertical-align: top;
}


.main_breadcrumb {
	padding: 5px 0 0;
	display: flex;
	margin-top: 10px;
}

.breadcrumb {
	margin-bottom: 0;
	background: transparent;
}

.breadcrumb a,
.breadcrumb span {
	color: var(--white-color);
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb>li+li:before {
	padding: 0 5px;
	color: var(--white-color);
	content: "/\00a0";
}




.highlights-area .highlights-left-box .inner {
	background: var(--color-extra02);
	margin-right: 30px;
}

.highlights-area .highlights-right-box .inner {
	background: var(--color-extra03);
	margin-left: 30px;
}

.highlights-area .inner {
	padding: 50px;
	border-radius: 15px;
}

.highlights-area .inner h3 {
	color: var(--white-color);
}

.highlights-area .inner p {
	color: var(--white-color);
}

.highlights-area .inner a {
	color: var(--white-color);
}


.about-content-col .content {
	padding-right: 40px;
}

.about-enqueue {
	margin-top: 50px;
	display: block;
}

.about-enqueue span {
	font-size: 14px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	display: block;
	color: var(--primary-color);
}

.about-enqueue a {
	font-size: 32px;
	line-height: normal;
	color: var(--secondary-color);

}

.about-area .section-title-box h3 {
	font-size: 22px;
	line-height: normal;
}

.about-content-col .content p {
	font-size: 16px;
	line-height: 26px;
}


/* case study area */
.cs-content-col .item {
	background: var(--white-color);
	padding: 30px;
	margin-left: -140px;
	margin-top: 140px;
	box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
}

.cs-content-col {
	margin-bottom: 50px;
}

.cs-details-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 2rem;
}

.cs-details-gallery .magnific-img:nth-child(n+5) {
	display: none;
}

.cs-details-gallery .magnific-img .image-popup-vertical-fit {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
}

.cs-details-gallery .magnific-img:nth-child(4) .image-popup-vertical-fit:before {
	content: '';
	background: rgb(0 0 0 / 54%);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.cs-details-gallery .magnific-img .image-popup-vertical-fit p {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	text-align: center;
	display: flex;
	justify-content: center;
	font-size: 28px;
	color: var(--white-color);
	flex-direction: column;
	line-height: normal;
}

.cs-details-gallery .magnific-img .image-popup-vertical-fit p span {

	display: flex;
	justify-content: center;
	font-size: 14px;
	color: var(--white-color);
	line-height: normal;
}

.Awesome-video {
	background-color: var(--secondary-color);
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}

.Awesome-video .play-btn {
	height: auto;
	padding: 170px 0;
}

@media only screen and (max-width: 1199px) {
	.cash-study-area .cs-image-col .inner .media {
		display: block;
	}
}


/* get-app-area */
.get-app-area {
	background: var(--color-extra04);
	padding: 100px 0;
}

.get-app-area .get-app-col {
	position: relative;
}

.get-app-area .get-app-col .inner {
	max-width: 520px;
}

.get-app-area .get-app-col .inner h3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 30px;
}

.get-app-area .get-app-col .inner p {
	font-size: 1.2rem;
	line-height: normal;
	margin-bottom: 50px;
}

.get-app-phone {
	position: absolute;
	right: 0;
	bottom: -100px;
}


.apply-list li {
	list-style-type: circle;
}


.howwork-step-col {
	text-align: center;
}

.howwork-step-col .inner {
	padding: 30px 50px;
	background: #fff;
}

.howwork-step-col .image {
	margin-bottom: 20px;
}

.howwork-step-col .inner p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: normal;
}


.dashboardcontain {
	display: none;
}

#dashboard {
	display: block;
}

.tabs-box .dashboard_leftAccount {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 50px;
	flex-wrap: nowrap;
	border-bottom: 1px solid var(--secondary-color);
	overflow: auto;
	white-space: nowrap;
}

.tabs-box .dashboard_leftAccount li a {
	color: var(--dark-color);
	font-size: 16px;
	font-weight: 600;
	padding: 16px 5px;
	border-radius: 5px;
	display: inline-block;
	position: relative;
}

.tabs-box .dashboard_leftAccount li a.dashboard_menu_active {
	color: var(--bg-color);
}

.tabs-box .dashboard_leftAccount li a.dashboard_menu_active:after,
.tabs-box .dashboard_leftAccount li a:hover:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	background: var(--bg-color);
	left: 0;
	bottom: 0;
}

.contact-boxes-col .item {
	background: var(--white-color);
	text-align: center;
	padding: 50px;
	border-radius: 15px;
	box-shadow: 0 5.125rem 30.25rem rgba(0, 0, 0, .075) !important;
}

.contact-boxes-col .item .image {
	margin-bottom: 20px;
}

.contact-boxes-col .item .image img {
	width: 80px;
	height: 80px;
}

.contact-boxes-col .item .content a {
	font-size: 22px;
	font-weight: 600;
}

.contact-form-col {
	padding: 50px;
	background: #fff;
	box-shadow: 0 5.125rem 30.25rem rgba(0, 0, 0, .075) !important;
}

.contact-form-col .form-group input[type="text"],
.contact-form-col .form-group input[type="email"],
.contact-form-col .form-group input[type="password"],
.contact-form-col .form-group input[type="tel"],
.contact-form-col .form-group input[type="url"],
.contact-form-col .form-group input[type="file"],
.contact-form-col .form-group input[type="number"],
.contact-form-col .form-group textarea,
.contact-form-col .form-group select {
	position: relative;
	display: block;
	height: 58px;
	width: 100%;
	font-size: 16px;
	line-height: 34px;
	font-weight: 400;
	padding: 10px 20px;
	background-color: var(--color-extra-five);
	border: 1px solid var(--secondary-color);
	border-radius: 0px;
	-webkit-transition: var(--transition);
	-ms-transition: var(--transition);
	-o-transition: var(--transition);
	-moz-transition: var(--transition);
	transition: var(--transition);
}

.contact-form-col .form-group input[type="text"]:focus,
.contact-form-col .form-group input[type="email"]:focus,
.contact-form-col .form-group input[type="password"]:focus,
.contact-form-col .form-group input[type="tel"]:focus,
.contact-form-col .form-group input[type="url"]:focus,
.contact-form-col .form-group input[type="file"]:focus,
.contact-form-col .form-group input[type="number"]:focus,
.contact-form-col .form-group textarea:focus,
.contact-form-col .form-group select:focus {
	border-color: var(--primary-color);
}

.contact-form-col .form-group {
	position: relative;
	margin-bottom: 30px;
}

.contact-form-col .form-group textarea {
	height: 130px;
	resize: none;
}

.contact-form-area {
	position: relative;
	z-index: 1;
}

.contact-map {
	margin-top: -170px;
}


/* -------------------------------------- 
>>>>>  Changes -- Raxit Undhad 
-------------------------------------- */


body {
	background-color: #ffffff;
}

/* .header-menu .header-main-menu .header-menu-items .header-menu-link {
    color: #000;
} */

.inner-banner {
	position: relative;
	padding-top: 75px;
	padding-bottom: 75px;
	background: transparent;
	object-fit: cover;
	object-position: bottom center;
}


.inner-banner .image-layer {
	opacity: 0.8;
}

.inner-banner .inner h1 {
	position: relative;
	font-weight: 500;
	font-size: 30px;
	text-transform: none;
	line-height: 1.0em;
	margin: 0;
	color: var(--white-color);
	text-transform: uppercase;
}

.slider-shape {
	padding: 10px 30px;
	margin: 0 25px;
	border-radius: 0;
}

.slider-shape2 {
	padding: 86px 30px 30px 30px;
	margin-top: -75px;
	clip-path: polygon(0 19%, 100% 0%, 100% 99%, 0% 90%);
}

.banner-style-one .content span {
	margin-bottom: 5px;
}

.banner-style-one .content .big-title h1 {
	font-size: 26px;
	line-height: 30px;
}

.play-btn a .play-ripple {
	width: 89px;
	height: 89px;
}

.boxes-area .section-title-box h2 {
	color: #454545 !important;
	font-size: 18px;
	font-weight: 600 !important;
	margin-top: 5px;
}

.section-title-box h2 {
	font-size: 22px;
	font-weight: 600 !important;
}

.section-subtitle span {
	font-size: 24px;
	font-weight: 600;
	color: #f37b20 !important;
}

.section-text {
	font-size: 16px;
	color: #454545 !important;
	line-height: 1.5;
	text-align: justify;
}

.title h2 {
	font-size: 26px;
	font-weight: 600;
}

.image img {
	width: 100%;
}

.boxes-image-col .image img {
	width: 100%;
	border-radius: 15px;
}

.boxes-content-col .item {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 60px;
	padding-right: 20px;
}

.about-side-wrap {
	position: relative;
}

.about-side-wrap:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -20px;
	width: 250px;
	height: 80%;
	border-radius: 15px;
	border: 5px solid #4aaa48;
	transform: translateY(-50%);
	z-index: -1;
}

.about-side-wrap:before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: -20px;
	width: 100px;
	height: 100px;
	border-radius: 0 100% 0 20px;
	background: #4aaa48;
	background-image: url(../images/kubicon-light.svg);
	background-size: 50px;
	background-repeat: no-repeat;
	background-position: 34% 62%;
}

.fun-factor-area .fun-factor-box .inner .fun-factor-count {
	line-height: 30px;
	font-size: 30px;
	color: #4aaa48;
}

.fun-factor-area .fun-factor-box .inner .fun-factor-icon img {
	height: 45px;
	width: auto;
}

.tabs-box .dashboard_leftAccount {
	border-bottom: none;
}

.learn-more-btn {
	margin-top: 5px;
}

.play-btn a .play-ripple {
	box-shadow: 0 0 0 0 rgba(74, 169, 71, 0.616);
}

h4.text-color {
	color: #f37b20;
	font-size: 22px;
}

.video-media-background {
	opacity: 0.50;
}

.about-area .section-title-box h3 {
	font-size: 18px;
}

.about-content-col .content p:last-child {
	margin-bottom: 0px;
}

/* .boxes-area .section-title-box h2 {
	color: #454545 !important;
	margin-top: 5px;
} */

/* .content-us */

.contact-boxes-col .item {
	background: #f5f5f5;
	padding: 20px;
	border-radius: 15px;
	box-shadow: none !important;
}

.contact-boxes-col .item .image img {
	width: 40px;
	height: 40px;
}

.contact-boxes-col .item .image {
	margin-bottom: 10px;
}

.contact-boxes-col .item .content a {
	font-size: 18px;
	font-weight: 500;
}

.contact-form-col {
	padding: 50px;
	background: #f5f5f5;
}

.contact-form-col .form-group textarea {
	outline: none !important;
}

/* 19-07-2023 */

.video-area-first {
	width: 100%;
	display: inline-block;
}

.video-area-first .kubvideo-background {
	width: 100%;
	display: inline-block;
	position: relative;
}

.video-area-first .kubvideo-background img {
	width: 100%;
	height: 100%;
	border-radius: 15px;
}

.video-area-first .intro-content-box .play-btn {
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-area-first .intro-content-box .play-btn a {
	width: 0px;
	height: 0px;
	color: #F37B20;
	border: none;
	font-size: 25px;
}

.video-area-first .intro-content-box .play-btn a .play-ripple {
	box-shadow: 0 0 0 0 rgb(246 28 13);
	width: 55px;
	height: 38px;
	border-radius: 18px;
	margin: 25px 0 0 1px;
}

.box-main-title h3 {
	color: #f37b20;
}

/* SeminarPage (07-08-2023)*/

.semimainpg {
	width: 100%;
	display: inline-block;
	position: relative;
}

.semimainpg::before {
	position: absolute;
	content: "";
	background-color: #212121;
	opacity: 0.65;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.mainpginfo {
	position: relative;
	width: 100%;
	display: inline-block;
	padding: 100px 0;
}

.mainpginfo h1 {
	display: inline-block;
	padding: 10px 25px;
	color: #F37C21;
	font-family: var(--body-font);
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 45px;
	border-radius: 15px;
	background: #FFF;
}

.mainpginfo h3 {
	color: #ffffff;
	font-family: var(--body-font);
	font-size: 36px;
	line-height: 46px;
	font-weight: 600;
}

.pgnbmbox {
	position: absolute;
	bottom: 0px;
	background-color: #ffffff;
	padding: 18px 30px;
	border-radius: 25px 25px 0 0;
	text-align: center;
}

.pgnbmbox .nbminfo {
	margin-right: 20px;
}

.pgnbmbox .nbminfo h5 {
	color: #4AAA48;
	font-family: var(--body-font);
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
}

.pgnbmbox .nbminfo p {
	color: #717883;
	font-family: var(--body-font);
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	margin-bottom: 0px;
}

.pgnbmbox .nbminfo:last-child {
	margin-right: 0px;
}

.dismapinfo {
	width: 100%;
}

.dismapinfo .owl-dots button.owl-dot {
	height: 10px;
	width: 10px;
	margin: 0 5px;
	border-radius: 50%;
}

.dismapinfo h4 {
	font-family: var(--body-font);
	color: #FFF;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.semilistcon {
	width: 100%;
	display: inline-block;
}

.semihead {
	width: 100%;
	display: inline-block;
	padding: 30px 0 10px 0;
}

.semihead h4 {
	width: 100%;
	display: inline-block;
	font-family: var(--body-font);
	color: #F37C21;
	font-size: 26px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0;
}

.semilistcon .seminfo {
	width: 100%;
	display: inline-block;
}

.seminfobox {
	width: 100%;
	/* border: 1px solid #717883; */
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	margin-top: 20px;
}

.seminfobox:hover {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.seminfobox img {
	width: 100%;
	border-radius: 10px 10px 0 0;
}

.seminfobox .semiboxinner {
	padding: 5px 20px 15px 20px;
}

.seminfobox .semiboxinner .date {
	font-family: var(--body-font);
	color: #212121;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 10px;
	/* border-bottom: 1px solid var(--bg-color); */
	padding-bottom: 10px;
	position: relative;
}

.seminfobox .semiboxinner .date::before {
	content: "";
	background-color: var(--bg-color);
	width: 80px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.seminfobox .semiboxinner h5 {
	font-family: var(--body-font);
	color: #4AAA48;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 54px;
}

.viewbtn .buttons {
	margin-top: 10px;
	min-width: 110px;
	height: 35px;
	background: #F37C21;
	font-size: 14px;
	font-weight: 600;
}

.viewbtn .buttons:active {
	color: #ffffff !important;
}

.ldmore .btn {
	font-family: var(--body-font);
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	background-color: #F17C21;
	border: 1px solid #F17C21;
	border-radius: 5px;
	font-weight: 700;
	color: #ffffff;
	padding: 8px 20px;
}

.ldmore .btn:hover {
	background-color: #ffffff;
	color: #f37b21;
}

.smdtlview {
	width: 100%;
	display: inline-block;
}

.smdtlview .smdtlcon {
	width: 100%;
	display: inline-block;
}

.smdtlcon .smdtlhead h1 {
	color: #F37C21;
	font-family: 'Lexend', sans-serif;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.smdtlcon .smdtlhead p {
	color: #212121;
	font-family: 'Lexend', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 0px;
}

.dtltxt p {
	color: #585858;
	font-family: 'Lexend', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 15px;
}

.smnrslid {
	width: 100%;
	display: inline-block;
	background-color: #F4F4F4;
}

.smnrslid .smrslidcon {
	padding: 40px 0;
}

.smnrslid .smrslidhead h2 {
	color: #F37C21;
	font-family: 'Lexend', sans-serif;
	font-size: 26px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 15px;
}

.smrslidinfo .owl-prev {
	left: -60px;
}

.smrslidinfo .owl-next {
	right: -60px;
}

.smrslidinfo .owl-prev,
.smrslidinfo .owl-next {
	top: 50%;
	width: 40px;
	height: 40px;
	transform: translateY(-50%);
	color: #ffffff !important;
	text-align: center;
}

.smrslidinfo .owl-prev::before,
.smrslidinfo .owl-next::before {
	border: transparent;
	background-color: #f37c2185;
	border-radius: 50%;
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	z-index: -1;
}

.smrslidinfo .owl-prev:hover::before,
.smrslidinfo .owl-next:hover::before {
	background-color: #f37b21;
}

.smrslidinfo .owl-prev i,
.smrslidinfo .owl-next i {
	color: #ffffff;
	font-size: 20px;
	line-height: 40px;
}

.smrslidinfo .owl-prev:hover i,
.smrslidinfo .owl-next:hover i {
	color: #ffffff;
}

.playicon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 109;
}

.smdtlimg {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.smdtlimg .mainimg {
	width: 60%;
	margin: 40px auto;
}

.smdtlimg .mainimg img {
	width: 100%;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
}

.smdtlimg .dtlimg .image-popup-vertical-fit {
	margin-bottom: 20px;
}

.smdtlimg .dtlimg img {
	width: 100%;
	border-radius: 5px !important;
}

.semvideo {
	position: relative;
	margin-bottom: 20px;
}

.semvideo::before {
	position: absolute;
	content: "";
	background-color: #212121;
	opacity: 0.6;
	border-radius: 5px;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 19;
}

img.mfp-img {
	width: 550px !important;
	height: auto;
}

.cinstup {
	margin-top: 10px;
}

.cinstup .cin img {
	width: 55px;
	height: 40px;
	object-fit: contain;
	margin-bottom: 5px;
}

.cinstup .stup img {
	width: 116px;
	height: 40px;
	object-fit: contain;
	margin-bottom: 0px;
}

.cinstup h4 {
	color: var(--white-color);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 0px;
}

.partners-logo {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.partners-logo .partnerbox {
	width: 100%;
	margin-bottom: 30px;
	padding: 15px;
	box-shadow: rgb(243, 124, 33, 0.5) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	border-radius: 15px;
}

.partners-logo .partnerbox img {
	width: 200px;
	height: 100px;
	object-fit: contain;
}

.calculatorMain {
	width: 100%;
	display: inline-block;
	padding: 20px 0;
}

.calculator-info {
	width: 100%;
	display: inline-block;
}

.calculator-info .titlehead h2 {
	font-weight: 600;
	font-size: 35px;
	line-height: 35px;
	color: #4aaa48;
	position: relative;
	display: inline-block;
	margin-bottom: 40px;
}

/* 
.calculator-info .titlehead h2::before {
	content: "";
	position: absolute;
	background: #e3c8b4;
	width: 100%;
	height: 10px;
	bottom: 0;
	left: 0;
	z-index: -1;
} */

.tab-sec thead th {
	background-color: #F17C21;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	font-weight: 600;
	font-size: 16px;
	line-height: 16px;
	color: #ffffff;
}

.tab-sec tbody td {
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}

.tab-sec tbody td p {
	font-size: 17px;
	line-height: 17px;
	font-weight: 600;
	color: #F17C21;
	margin-bottom: 10px;
}

.tab-sec tbody td span {
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	color: #454545;
}

.tab-sec tbody td .clrorg {
	color: #F17C21;
	font-weight: 600;
}

.tab-sec .form-control {
	display: block;
	width: 100%;
	height: calc(2.25rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	box-shadow: none;
	text-align: center;
}

.calculator {
	color: #ffffff;
	position: sticky;
	top: 68px;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 15px;
	background-image: linear-gradient(to top right, #f5954c, #6ebb6c);
}

.calculator p {
	font-weight: 400;
	font-size: 15px;
	line-height: 15px;
	margin-bottom: 10px;
}

.calculator h4 {
	font-weight: 600;
	font-size: 25px;
	line-height: 25px;
	letter-spacing: 0.1;
}

.calculator .commission-image img {
	width: 175px;
}

.calculator .total-ammount {
	margin-top: 15px;
}

.calculator .total-ammount h4 .total {
	font-size: 30px;
	line-height: 30px;
}

.calculator .total-ammount h4 {
	font-size: 15px;
	line-height: 15px;
}

.calculator a {
	background-color: #4AAA48;
	border: 2px solid #4AAA48;
	padding: 8px 20px;
	color: #ffffff;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
}

.calculator .btn:hover {
	color: #ffffff;
	border-color: #ffffff;
	background-color: transparent;
}

.btn-check:focus+.btn,
.btn:focus {
	outline: 0;
	box-shadow: none;
}

.westmanag {
	width: 100%;
	display: inline-block;
}

.iibfPage .container {
	position: relative;
}

.iibfPage.iibfBackImg {
	padding: 120px 0 80px 0;
	background: url("../images/iibf-about.png") top center no-repeat;
	position: relative;
	margin-top: -48px;
	z-index: 0;
}

.iibfPage.iibfBackImg:before {
	content: "";
	background: rgb(255 255 255 / 75%);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

.iibfPage .section-title h2 {
	font-size: 26px;
	line-height: 26px;
	font-weight: 600;
	color: #F17C21;
}

.iibfPage .section-title p {
	font-style: italic;
	font-size: 16px;
	line-height: 20px;
	color: #444444;
}

.iibfPage p,
.boxes-area p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #444444;
	margin-bottom: 0;
}

.btn-learn-more {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 5px;
	transition: 0.3s;
	line-height: 1;
	color: #f37b21;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	margin-top: 6px;
	border: 2px solid #f37b21;
}

.btn-learn-more:hover {
	background: #f37b21;
	color: #fff;
	text-decoration: none;
}

.objectivelist li {
	list-style: none;
	text-align: left;
	padding: 12px;
	background-color: #f37c211c;
	border: 1px solid rgba(243, 124, 33, 0.329);
	border-radius: 5px;
	color: rgb(32, 32, 32);
	margin-top: 15px;
}

.objectivelist li i {
	color: #f37b21;
}

.cta {
	background: linear-gradient(rgba(243, 123, 33, 0.8), rgba(243, 123, 33, 0.9)), url("../images/cta-bg.jpg") fixed center center;
	background-size: cover;
	padding: 120px 0;
}

.cta.iibfPage .section-title h2 {
	color: #ffffff;
	margin-bottom: 35px;
}

.importancelinst li {
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
}

.importancelinst li span {
	font-size: 28px;
	margin-right: 15px;
}

.iibfExam.iibfPage {
	padding: 50px 0;
	background-color: #f37c212a;
}

.iibfExam.iibfPage .table tbody th,
.iibfExam.iibfPage .table tbody td {
	border-right: none;
}

.iibfExam.iibfPage .table tbody tr:hover {
	background-color: #f37c2154;
}

.iibfPage .icon-box {
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 5px 10px 29px 0 rgba(243, 123, 33, 0.2);
	transition: all 0.3s ease-in-out;
	border-radius: 10px;
}

.iibfPage .icon-box h4 {
	color: #4aaa48;
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
	margin-bottom: 0;
}

.iibfPage .icon-box h4 span {
	color: #F17C21;
	font-size: 30px;
}

.iibfPage .faq-list li {
	padding: 20px;
	background: #fff;
	border-radius: 4px;
	position: relative;
}

.iibfPage .faq-list li p {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
	margin-bottom: 0;
	color: #444444;
}

.iibfPage .faq-list li p i {
	color: #4aaa48;
}

.iibfPage .faq-list li+li {
	margin-top: 15px;
}

.tab-sec {
	overflow: auto !important;
}

/* Rasponsive CSS - Raxit Undhad */

@media (max-width: 1024.98px) {
	.fun-factor-area .fun-factor-box .inner .fun-factor-count {
		line-height: 20px;
		font-size: 20px;
	}

	.smrslidinfo .owl-prev {
		left: 0;
	}

	.smrslidinfo .owl-next {
		right: 0;
	}
}

@media (max-width: 991.98px) {
	.main-logo {
		background: none !important;
	}

	.main-logo a img {
		background: #fff !important;
		padding: 10px 5px 5px 5px;
		margin-top: -10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	.about-side-wrap:before {
		bottom: -15px;
		left: -15px;
		width: 80px;
		height: 80px;
	}

	.about-side-wrap:after {
		right: -15px;
	}

	.mobile-menu-trigger span {
		background-color: #f37d23 !important;
	}

	.mainpginfo h1 {
		padding: 5px 20px;
		font-size: 35px;
		line-height: 35px;
		border-radius: 10px;
	}

	.pgnbmbox .nbminfo {
		margin-right: 12px;
	}

	.dismapinfo h3 {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 10px;
	}

	.dismapinfo h4 {
		font-size: 22px;
	}

	.pgnbmbox {
		padding: 15px 20px;
		border-radius: 20px 20px 0 0;
	}

	#mobile-menu-wrap .newtxt {
		position: absolute;
		top: 0;
		right: 0;
		background: #ffffff8f;
	}

	.iibfPage.iibfBackImg {
		padding: 90px 0 32px 0;
	}

	.iibfPage .section-title h2 {
		font-size: 24px;
		line-height: 24px;
	}

	.iibfPage .icon-box h4 {
		font-size: 18px;
		line-height: 18px;
	}

	.iibfPage .icon-box h4 span {
		font-size: 25px;
	}

}

@media only screen and (max-width: 767px) {
	.tabs-box .dashboard_leftAccount {
		justify-content: center;
	}

	.get-app-area {
		padding: 45px 0 !important;
	}

	.get-app-col {
		justify-content: center;
		display: flex;
	}

	.smdtlimg .mainimg {
		width: 100%;
		margin: 40px auto;
	}

	.smdtlview {
		padding-top: 10px !important;
	}

	.fancybox-video {
		padding-right: 5px;
		margin-bottom: 10px;
	}

	.smdtlimg .dtlimg .image-popup-vertical-fit {
		margin-bottom: 10px;
	}

	.smdtlimg .dtlimg .image-popup-vertical-fit:nth-child(odd) {
		padding-right: 5px;
	}

	.smdtlimg .dtlimg .image-popup-vertical-fit:nth-child(even) {
		padding-left: 5px;
	}

	.calculator-info .titlehead h2 {
		font-size: 28px;
		line-height: 28px;
		margin-bottom: 25px;
	}

	.boxes-content-col .item {
		padding-bottom: 10px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.iibfPage .icon-box {
		padding: 20px 15px;
	}

	.iibfPage .icon-box h4 span {
		font-size: 20px;
	}

	.iibfPage .icon-box h4 {
		font-size: 16px;
		line-height: 16px;
	}

	.cta {
		padding: 50px 0;
	}

	.importancelinst li span {
		font-size: 22px;
	}

}

@media (max-width: 575.98px) {

	.inner-banner {
		padding-top: 10px;
		padding-bottom: 60px;
	}

	.header-full:after {
		display: none !important;
	}

	.about-side-wrap:before {
		display: none;
	}

	.about-side-wrap:after {
		display: none;
	}

	.boxes-content-col .item {
		padding-bottom: 10px !important;
	}

	.contact-boxes-col:first-child {
		margin-bottom: 15px;
	}

	/* .ss-video-media-background img {
		height: auto;
	} */

	.team-content {
		margin-bottom: 25px;
	}

	.get-app-area {
		padding: 25px 0 !important;
		text-align: center;
		margin: 15px 0px !important;
	}

	.get-app-area .get-app-col .inner h3 {
		font-size: 22px;
	}

	.get-app-area .get-app-col .inner p {
		font-size: 16px !important;
	}

	.video-area-first .intro-content-box .play-btn a .play-ripple {
		box-shadow: none;
	}

	.video-area-first .intro-content-box .play-btn a .play-ripple {
		margin: 0;
	}

	.video-area-first .intro-content-box .play-btn {
		position: relative;
		display: block;
		width: 50px;
		height: 108px;
		margin: 0 auto;
	}

	.video-area-first .intro-content-box .play-icon svg {
		width: 50px;
		height: 45px;
	}

	.section-title-box h2 {
		font-size: 16px;
	}

	.mainpginfo h1 {
		font-size: 30px;
		line-height: 30px;
	}

	.mainpginfo h3 {
		font-size: 30px;
		line-height: 40px;
	}

	.dismapinfo h4 {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.pgnbmbox .nbminfo h5 {
		font-size: 16px;
		line-height: 16px;
		margin-bottom: 8px;
	}

	.pgnbmbox .nbminfo p {
		font-size: 14px;
		line-height: 14px;
	}

	.pgnbmbox {
		padding: 12px 10px;
		border-radius: 15px 15px 0 0;
		width: 100%;
	}

	.semihead {
		padding: 15px 0 5px 0;
	}

	.semihead h4 {
		font-size: 25px;
	}

	.smdtlimg .mainimg {
		margin: 20px auto;
	}

	.smdtlcon .smdtlhead h1 {
		font-size: 24px;
	}

	.smdtlcon .smdtlhead p {
		font-size: 16px;
	}

	.dtltxt p {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.smnrslid .smrslidcon {
		padding: 20px 0;
	}

	.smnrslid .smrslidhead h2 {
		font-size: 24px;
		margin-bottom: 5px;
	}

	.partners-logo .partnerbox img {
		width: 150px;
		height: 90px;
	}

	.tab-sec thead th {
		font-size: 14px;
		line-height: 14px;
	}

	.tab-sec tbody td p {
		font-size: 15px;
		line-height: 15px;
	}

	.calculator-info .titlehead h2 {
		font-size: 25px;
		line-height: 25px;
	}

	.iibfPage .section-title h2,
	.section-subtitle span,
	.west_txt h1,
	.single-services-content h3 {
		font-size: 20px !important;
		line-height: 22px !important;
	}

	.iibfPage p,
	.boxes-area p,
	.iibfPage .section-title p,
	.iibfPage .faq-list li p {
		font-size: 14px;
		line-height: 18px;
	}

	.iibfPage .icon-box h4 {
		font-weight: 500;
	}

	.tab-sec tbody td span {
		font-size: 14px;
		line-height: 14px;
	}

	.single-services-content h4 {
		font-size: 19px !important;
		line-height: 19px !important;
		margin-bottom: 14px;
	}

	#image-popup {
		width: 250px !important;
		height: 155px !important;
	}
}

@media (max-width: 360.98px) {

	.mainpginfo h3 {
		font-size: 25px;
		line-height: 35px;
	}

	.dismapinfo h4 {
		font-size: 15px;
	}

	.pgnbmbox .nbminfo h5 {
		font-size: 14px;
		line-height: 14px;
	}

	.pgnbmbox .nbminfo p {
		font-size: 11px;
		line-height: 11px;
	}
}



/* Header DropDown CSS Start */
.slicknav_nav .slicknav_arrow {
	background-color: transparent;
}

.mobile-menu-container li>a .slicknav_arrow::after {
	content: "\f054";
}

.mobile-menu-container.menu-open li.slicknav_open>a .slicknav_arrow::after {
	content: "\f078";
}

/* .header-menu ul .innermenu {
	background-color: #ffffff;
	opacity: 0;
	position: absolute;
	top: 100%;
	visibility: hidden;
	z-index: 99999;
	transition: all 300ms ease;
	border-top: 2px solid #4aaa48;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
	margin: 0;
	border-radius: 10px;
} */

.header-menu ul .innermenu {
	background-color: #ffffff;
	opacity: 0;
	position: absolute;
	top: 100%;
	visibility: hidden;
	z-index: 99999;
	transition: all 300ms ease;
	border-top: 2px solid #4aaa48;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
	margin: 0;
	border-radius: 10px;
	transform: scaleY(0);
	transform-origin: top;
	/* Ensures animation starts from the bottom */
}

.header-menu ul .dricon {
	transform: rotate(90deg);
	font-size: 20px;
	display: inline-block;
	margin-left: -10px;
}

/* .header-menu ul li:hover>.innermenu {
	visibility: visible;
	transition: all 300ms ease;
	opacity: 1;
	transform: scaleY(1);
	top: 50px;
	left: 0;
	margin: 0;
} */

.header-menu ul li:hover>.innermenu {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	transition: all 300ms ease;
	top: 25px;
	left: 0;
	margin: 0;
}

.innermenu li {
	width: auto;
	white-space: nowrap;
	border-bottom: 1px solid #4AAA484d;
}

.innermenu li:hover {
	background-color: #83c18212;
}

.innermenu li:last-child {
	border-bottom: none;
}

.innermenu li a {
	padding: 10px 20px;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	color: #212121;
	/* font-family: 'Lexend Deca', sans-serif; */
	width: 100%;
	display: inline-block;
}

.innermenu li:hover a {
	color: #f37b21;
}

.mblmenu .accordion-item {
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, .125);
}

.mblmenu .accordion-button {
	background: transparent;
	color: #fff;
	padding: 0;
}

.mblmenu .accordion-button:focus {
	z-index: 3;
	border-color: none;
	outline: 0;
	box-shadow: none;
}

.mblmenu .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.mblmenu .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.mblmenu .accordion-body {
	padding: 0px 0px 0px 20px;
}

.mblmenu .innermenu li {
	padding: 2px 0px;
	border-bottom: 1px solid #dda63a3d;
}

/* .mblmenu .innermenu li:last-child {
    border-bottom: none;
} */

.mblmenu .accordion-header a i {
	font-size: 14px !important;
}

/* Header DropDown CSS End */



/* start to home service section css by Dhiraj Maurya - 04-09-24 */

.fun-service-box .inner-box {
	position: relative;
	padding: 1rem 1rem;
	/* background: rgb(255 255 000 / 10%); */
	border-radius: 20px;
	/* box-shadow: 0 3px 20px rgba(30, 30, 30, .26); */
	box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.fun-service-box .inner-box:hover {
	box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.fun-service-box .img-box {
	height: 70px;
	width: 70px;
	padding: 15px;
	margin: 0 auto;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.fun-service-box h4 {
	font-size: 30px;
	font-weight: 600;
	line-height: 30px;
}

.fun-service-box:nth-child(odd) {
	color: #F37B20;
}

.fun-service-box:nth-child(odd) .inner-box {
	background: rgb(243 123 32 / 10%);
}

.fun-service-box:nth-child(odd) .btn-box {
	padding: 0.25rem 0.5rem;
	font-size: 14px;
	border-radius: 20px;
	color: #F37B20;
	border-color: #F37B20;
}

.fun-service-box:nth-child(odd) .btn-box:hover {
	color: #fff;
	background-color: #F37B20;
	border-color: #F37B20;
}

.fun-service-box:nth-child(odd) .inner-box:hover .img-box {
	background-color: #F37B20;
}

/* .fun-service-box:nth-child(odd) .inner-box:hover {
	box-shadow: rgb(243 123 32) 0px 4px 12px;
} */

.fun-service-box:nth-child(even) {
	color: #4aaa48;
}

.fun-service-box:nth-child(even) .inner-box {
	background: rgb(74 170 72 / 10%);
}

.fun-service-box:nth-child(even) .btn-box {
	padding: 0.25rem 0.5rem;
	font-size: 14px;
	border-radius: 20px;
	color: #4aaa48;
	border-color: #4aaa48;
}

.fun-service-box:nth-child(even) .btn-box:hover {
	color: #fff;
	background-color: #4aaa48;
	border-color: #4aaa48;
}

.fun-service-box:nth-child(even) .inner-box:hover .img-box {
	background-color: #4aaa48;
}

/* .fun-service-box:nth-child(even) .inner-box:hover {
	box-shadow: rgb(74 170 72) 0px 4px 12px;
} */
.fun-service-box:nth-child(even) .inner-box .img-box img {
	filter: hue-rotate(70deg);
}

.fun-service-box .inner-box:hover .img-box img {
	filter: brightness(0) invert(1) !important;
}

.error_class,
.select2-container--default.error_class .select2-selection--single,
.select2-container--default.error_class .select2-selection--multiple {
	/* border-color: #F00 !important; */
	border: 1px solid #F00 !important;
}

/* end to home service section css by Dhiraj Maurya - 04-09-24 */




.team-img img {
	height: 330px;
	object-fit: cover;
	width: 100%;
	border-radius: 10px;
}

.team-content {
	position: relative;
	background: #fff;
	border-right: 5px solid #F37B20;
	border-radius: 0 10px 10px 10px;
	padding: 12px 15px;
	margin-right: 20px;
	margin-top: -45px !important;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 15%);
	text-align: start !important;
}

.team-bio h5 {
	font-size: 15px;
	margin-bottom: 0px;
	text-transform: capitalize;
	color: #212121;
}

.team-bio span {
	font-size: 14px;
	font-weight: 500;
	color: #F37B20;
	text-transform: uppercase;
	letter-spacing: 2px
}

.team-img img.social-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	height: 35px;
	width: 35px;
	border: none;
	filter: grayscale(100%);
	cursor: pointer;
}

.team-img img.social-icon:hover {
	filter: none;
}

.html-content img {
	height: inherit !important;
}


/* Ashvin Malaviya CSS Start (12-09-2024) */

.our-team-slider .team-box {
	margin: 10px;
}

.our-team-slider button.owl-dot,
.our-advisor-slider button.owl-dot {
	height: 5px;
	width: 30px;
	background: #f37b2036;
	margin: 0 5px;
	border-radius: 0;
}

.our-team-slider .team-content,
.our-advisor-slider .team-content {
	/* box-shadow: none; */
	box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 15%);
}

.header-menu ul .innermenu {}

/* .owl-center .owl-stage-outer {
	display: flex !important;
	justify-content: center;
} */

.owl-wrapper {
	margin: 0 auto;
}


.seminfobox .semiboxinner {
	/* padding: 5px 20px 15px 20px; */
	padding: 0;
	margin-top: 15px;
}


.seminfobox {
	margin-top: 20px;
	padding: 20px;
}

.seminfobox .semiboxinner h5 {
	margin-bottom: 10px;
}

.seminfobox .bdes p {
	display: inline-block;
	font-size: 14px;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	text-align: justify;
	margin-bottom: 0;
}

.seminfobox .bdes .readmore {
	font-size: 14px;
	line-height: 14px;
	display: inline-block;
	font-weight: 500;
	color: var(--bg-color);
}

.seminfobox .bdes .readmore:hover {
	color: #4AAA48;
}

.breadcrumb li {
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	color: #4AAA48;
}

.breadcrumb a {
	color: var(--bg-color);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: #4AAA48;
}

.grid5column {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.grid5column col {
	flex: 0 0 calc(20% + -0px);
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 25px;
}

.videoiframe iframe {
	border-radius: 10px;
}

@media (max-width: 1768.98px) {}


@media (max-width: 1680.98px) {}


@media (max-width: 1440.98px) {}


@media (max-width: 1399.98px) {}


@media (max-width: 1280.98px) {
	.team-img img {
		height: 375px;
	}
}


@media (max-width: 1199.98px) {
	.our-advisor-slider .team-box {
		flex: 0 0 auto;
		width: 33.33%;
	}

	.impact-col {
		flex: 0 0 auto;
		width: 25%;
		margin-bottom: 25px;
	}
}


@media (max-width: 991.98px) {
	.our-advisor-slider .team-box {
		flex: 0 0 auto;
		width: 50%;
	}
}


@media (max-width: 767.98px) {
	.impact-col {
		flex: 0 0 auto;
		width: 50%;
		margin-bottom: 25px;
	}
}


@media (max-width: 575.98px) {}


@media (max-width: 480.98px) {
	.our-advisor-slider .team-box {
		flex: 0 0 auto;
		width: 100%;
	}

	/* .impact-col {
		flex: 0 0 auto;
		width: 100%;
		margin-bottom: 25px;
	} */

	/* .impact-col:last-child {
		margin-bottom: 0;
	} */
}

/* Ashvin Malaviya CSS End (12-09-2024) */
